home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CLRCTR10.ARJ / CLRCTRL.H < prev    next >
Text File  |  1991-06-15  |  1KB  |  30 lines

  1. /*
  2. Public header file for color selector custom control facility
  3.  
  4. (C) Scott Gourley, 1991.
  5. */
  6.  
  7. /* defining information about the color selector facility */
  8.  
  9. #define CLRCTRL_DLLNAME    "CLRCTRL.DLL"
  10.  
  11. /* specialized messages for the color selector custom control               */
  12.  
  13. /* Message           Description       Returns       wParam     lParam      */
  14. /* ------------------------------------------------------------------------ */
  15. /*                                                                          */
  16. /* CLRM_SETCURCOLOR  Set the current   CB_ERR if     Not used.  The RGB     */
  17. /*                   selected item of  the color                value of    */
  18. /*                   the combobox to   does not                 the color   */
  19. /*                   the passed color, exist in the             to be       */
  20. /*                   if available.     combobox.                selected.   */
  21. /*                                                                          */
  22. /* CLRM_GETCURCOLOR  Get the color of  The color of  Not used.  Not used.   */
  23. /*                   the current       the current                          */
  24. /*                   selected item in  selected                             */
  25. /*                   the combobox.     item, or                             */
  26. /*                                     CB_ERR.                              */
  27.  
  28. #define CLRM_SETCURCOLOR    (WM_USER + 0)
  29. #define CLRM_GETCURCOLOR    (WM_USER + 1)
  30.